home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / bbsutil / ckit210.zip / DEMO.BAT < prev    next >
DOS Batch File  |  1991-12-22  |  597b  |  15 lines

  1. REM SAMPLE BATCH file for making CKITDEMO using MSC
  2. REM Assuming your path are set to your compiler exe and lib files
  3. REM such as:
  4. REM             PATH=C:\MSC\BIN;C:\MSC;
  5. REM             INCLUDE=C:\MSC\INCLUDE
  6. REM             LIB=C:\MSC\LIB
  7. REM Need to define which compiler for CKITDEMO to compile correctly
  8. REM COMPILER = MICROSOFT
  9. REM This is only necassary when compiling the CKITDEMO.C program
  10. REM since it was designed to be compiled with MSC or TURBO C.
  11. REM (the -DCOMPILER switch)
  12.  
  13. cl  /c /Gs /Ote -DCOMPILER=MICROSOFT ckitdemo.c
  14. LINK    ckitdemo, ckitdemo.exe,,ckit_ms.lib;
  15.